home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fread.c < prev    next >
C/C++ Source or Header  |  1991-05-29  |  2KB  |  76 lines

  1. /* 
  2.  * fread.c --
  3.  *
  4.  *    Source code for the "fread" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fread.c,v 1.2 91/05/29 16:49:29 shirriff Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * fread --
  26.  *
  27.  *    This procedure inputs binary data from a buffered stream.
  28.  *
  29.  * Results:
  30.  *    The return value is the number of complete items actually read.
  31.  *    It may be less than numItems if an end-of-file or error condition
  32.  *    was encountered;  in this case, there may be an additional
  33.  *    partial item in buf after the complete items.
  34.  *
  35.  * Side effects:
  36.  *    Up to numItems*size bytes are read from stream to the memory at
  37.  *    buf.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. fread(bufferPtr, size, numItems, stream)
  44.     register char *bufferPtr;    /* Place to put the items that are read.
  45.                  * Must have enough space for numItems*size
  46.                  * bytes. */
  47.     int size;            /* Size of each item to be read. */
  48.     int numItems;        /* Number of items to be read from stream. */
  49.     register FILE *stream;    /* Stream from which bytes are to be read. */
  50. {
  51.     register int num, c, byteCount, itemCount;
  52.  
  53.     for (itemCount = 0; itemCount < numItems; itemCount++) {
  54.         for (byteCount = size; byteCount > 0;) {
  55.             if (stream->readCount>1) {
  56.                 num = stream->readCount < byteCount ? stream->readCount
  57.                         : byteCount;
  58.                 bcopy(stream->lastAccess+1, bufferPtr, num);
  59.                 stream->lastAccess += num;
  60.                 stream->readCount -= num;
  61.                 byteCount -= num;
  62.                 bufferPtr += num;
  63.             } else {
  64.                 c = getc(stream);
  65.                 if (c == EOF) {
  66.                     return(itemCount);
  67.                 }
  68.                 *bufferPtr = c;
  69.                 bufferPtr++;
  70.                 byteCount--;
  71.             }
  72.         }
  73.     }
  74.     return(numItems);
  75. }
  76.